$(function() {    $('.b-js_tabs dt').click(function() {        $(this).siblings()                .removeClass('selected')                .end()                .next('dd')                .andSelf()                .addClass('selected');        if ($(this).attr('id') != undefined && $(this).attr('id') != '') {            window.document.location.hash = window.document.location.hash.replace(/tab-([^\/]*)\//g, '') + 'tab-' + $(this).attr('id') + '/';        }    });});$(function() {    if (( tab = window.document.location.hash.match(/tab-([^\/]*)\//g) ) !== null) {        $('#' + tab[0].slice(4, -1)).click();    }    jQuery('.w208').css('width', 208);    jQuery('.jcarousel-list-horizontal').css('width', parseInt(jQuery('.jcarousel-list-horizontal').css('width')) + 30);    $(window).bind('resize', function() {        jQuery('.w208').css('width', 208);        jQuery('.jcarousel-list-horizontal').css('width', parseInt(jQuery('.jcarousel-list-horizontal').css('width')) + 30);    });});function slHideError(sID) {    this.document.getElementById('e' + sID).style.display = 'none';    this.document.getElementById(sID).focus();}
